home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Scope / Scope Disk #078 (199x)(Scope PD)(US)[WB].zip / Scope Disk #078 (199x)(Scope PD)(US)[WB].adf / Start / Part2 < prev    next >
Text File  |  1989-06-29  |  4KB  |  99 lines

  1.  
  2.                                 Floppy Startup
  3.  
  4.  
  5.   When you use Select, your file "startup-sequence" will read something like
  6.  
  7.                 Select Bail-out! Bench RamBench
  8.                 EndCLI > nil:
  9.  
  10.   and that's all.  The three scriptfiles, Bail-out!, Bench and RamBench are
  11. in s, with Bailout! reading "NewCLI", Bench your standard st-seq (minus the
  12. "EndCLI" at the end) and RamBench being your standard Bench startup with all
  13. the additional junk copied to Ram and the re-Assigns.
  14.  
  15.   If that's the way you're doing it then you might change your scriptfile
  16. "g" to read "Ed df0:s/Bench" for your quickie Ed st-seq.
  17.  
  18.   You'll have other variations for Select, maybe a BareBench that loads up
  19. the Workbench, sets the paths and all that, but doesn't start up any sub-
  20. routines like Conman, Mackie, FaccII, SetFont, Blitzfonts and PlayBeep.  If
  21. you do a lot of hi-res paint work you'll want to load up your paint program
  22. from scratch.  If you want to make a quick modem call you'd have a file
  23. loading up your terminal program.  In any of these files, of course, you can
  24. always run, but not Run, the program, then when you Quit have the scriptfile
  25. continue loading up your usual Bench.
  26.  
  27.                                        *
  28.  
  29.   The major rule of the startup-sequence is:  Get those buffers running!
  30. I kind of have to assume you have the meg of Ram..if you don't I strongly
  31. suggest hocking Mom or Dad and getting it.  If you have it, and know you're
  32. not going to be running any big graphics thing or painting in hi-res, then
  33. by all means splurge and kick AddBuffers up to 250 or so for df0, 50 for
  34. df1.  It doesn't do a whole lot of good to leave it at the stock 20; any-
  35. thing you RunBack or Copy in the startup also, along with the command, uses
  36. up the buffers.  So if you have a RunBack command on one line, then one a few
  37. down, AddBuffers 20 won't be able to remember the first RunBack and you're
  38. back to scratching off the disk.  Big help.
  39.  
  40.   The one place AddBuffers 20 actually COULD have done some good in the
  41. original st-seq was if they'd put it BEFORE the If-Path-Endif-If-Path-Endif
  42. commands, but did they?  No-o-o-o.  Please write Commodore Amiga and ask
  43. them to have that nice Mr. BenchMaster at their next planning session.
  44.  
  45.   If you've bought FaccII yet, then kick that baby into gear with a 250 or
  46. so and let 'er ride.  You should have a quickie scriptfile or two in s that
  47. will turn off FaccII, delete Ram:#? all, stop sub-routines, etc.
  48.  
  49.   Once you've got the buffers up and running and the Path, SetClock and
  50. LoadWb commands out of the way, you'll start loading up the sub-routines.
  51. Some programs, like Conman, are run straight, like LoadWb, while others have
  52. to be Runback'd to allow the window to close.  If the docs don't tell you,
  53. try it straight up first to see.
  54.  
  55.   While you're playing around with the st-seq, every time you edit it you
  56. might try putting a different command after LoadWb in the hopes of finding
  57. one compatible with it, so as to keep the disk thrashing down to a low roar.
  58.  
  59.   If you're running animations, graphic hacks, etc, you can slip a "Stack
  60. 16000" in here somewheres.
  61.  
  62.   If you run Conman, and God Help You If You're Not, run it "Conman -q -t",
  63. the "t" is a great option.
  64.  
  65.                                        *
  66.  
  67.   Try this:
  68.  
  69.   Type "Ed s/cdram".  In Ed, type "CD Ram:" and Save.
  70.  
  71.  
  72.   Edit the startup-sequence and at the bottom, just before the EndCLI, type
  73.   (for Interlace mode):
  74.  
  75.          NewCLI from s/cdram con:0/336/318/064/CD-RAM
  76.          NewCLI con:321/336/318/064/CD-BENCH
  77.  
  78.  
  79.   (for non-Interlace mode):
  80.  
  81.          NewCLI from s/cdram con:0/155/319/045/CD-RAM
  82.          NewCLI con:322/155/318/045/CD-BENCH
  83.  
  84.  
  85.   That'll pop open a few small CLI windows down at the bottom of your
  86. screen, the left one is CD Ram: and the right one is on the Bench.  The last
  87. one loaded in the st-seq is the active one upon boot-up.
  88.  
  89.   Okay, floppy-owners, thaz all.  See ya in about 20 megs.  Get 30 if you
  90. can POSSIBLY afford it.  It makes a BIG difference but I don't want to piss
  91. off all the 20-meg owners so that's all I'll say about it.  First on your
  92. shopping list is FaccII or similar-type program.  We've got to be able to
  93. get that memory back in mid-stream..not only for graphics but sound too.
  94.  
  95.  
  96.                                        *
  97.  
  98.  
  99.